home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / video / scrollmon / scrollmon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  2.0 KB  |  76 lines

  1. /*
  2.  * Copyright (C) 1993, 1994, Silicon Graphics, Inc.
  3.  * All Rights Reserved.
  4.  *
  5.  * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
  6.  * the contents of this file may not be disclosed to third parties, copied or
  7.  * duplicated in any form, in whole or in part, without the prior written
  8.  * permission of Silicon Graphics, Inc.
  9.  *
  10.  * RESTRICTED RIGHTS LEGEND:
  11.  * Use, duplication or disclosure by the Government is subject to restrictions
  12.  * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
  13.  * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
  14.  * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
  15.  * rights reserved under the Copyright Laws of the United States.
  16.  */
  17.  
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <unistd.h>
  21. #include <math.h>
  22. #include <string.h>
  23. #include <sys/time.h>
  24. #define _BSD_SIGNALS
  25. #include <signal.h>
  26. #include <limits.h>
  27. #include <sys/types.h>
  28. #include <sys/prctl.h>
  29. #include <sys/schedctl.h>
  30. #include <iostream.h>
  31. #include <fstream.h>
  32. #include <X11/Xlib.h>
  33. #include <X11/Intrinsic.h>
  34. #include <X11/StringDefs.h>
  35. #include <X11/keysym.h>
  36. #include <Xm/MainW.h>
  37. #include <Xm/RowColumn.h>
  38. #include <Xm/Label.h>
  39. #include <Xm/PushB.h>
  40. #include <Xm/CascadeB.h>
  41. #include <Xm/Frame.h>
  42. #include <Xm/Form.h>
  43. #include <Xm/ScrollBar.h>
  44. #include <Xm/Scale.h>
  45. #include <Xm/ToggleB.h>
  46. #include <Xm/ArrowB.h>
  47. #include <Xm/Text.h>
  48. #include <Xm/TextF.h>
  49. #include <Xm/FileSB.h>
  50. #include <X11/Xirisw/GlxMDraw.h>
  51. #include <gl/gl.h>
  52. #include <gl/get.h>
  53. #include <gl/device.h>
  54. #include <fmclient.h>
  55. #include <wfmclient.h>
  56. #include <PerfCalc.h>
  57. #include <gl/image.h>
  58. #include <xpm.h>
  59. #include "CredSection.h"
  60.  
  61. #ifndef HZ72
  62. #define HZ72                    23      /* multi-scan 72 HZ monitor */
  63. #endif
  64.  
  65. struct resources {
  66.   Boolean      perf;
  67.   Boolean      help;
  68.   Boolean      debug;
  69.   Boolean      noAAfonts;
  70.   int          speed;
  71.   int          fps;
  72.   int          winW;
  73.   int          winH;
  74.   char        *credFilename;
  75. };
  76.